home *** CD-ROM | disk | FTP | other *** search
/ The 50th Anniversary of …National Assembly Library / The 50th Anniversary of the National Assembly Library.iso / main.dxr / 00060.ls < prev    next >
Encoding:
Text File  |  2002-02-18  |  475 b   |  25 lines

  1. on mouseEnter
  2.   cursor([121, 122])
  3.   set the member of sprite 141 to 91
  4.   repeat with tt = 165 to 168
  5.     sprite(tt).visible = 1
  6.   end repeat
  7. end
  8.  
  9. on mouseDown
  10.   if rollover(164) then
  11.   end if
  12. end
  13.  
  14. on mouseLeave
  15.   if rollover(165) or rollover(166) or rollover(167) or rollover(168) then
  16.     set the member of sprite 141 to 91
  17.   else
  18.     set the member of sprite 141 to 113
  19.     repeat with tt = 165 to 168
  20.       sprite(tt).visible = 0
  21.     end repeat
  22.   end if
  23.   cursor(-1)
  24. end
  25.